evert

fun <T> Try<Option<T>>.evert(): Option<Try<T>>

Moves inner Option outside of the outer Try.

Return

Try nested in an Option for an Option nested in a Try.

Since

1.4.0

fun <T> Option<Try<T>>.evert(): Try<Option<T>>

Moves inner Try outside of the outer Option.

Return

Option nested in a Try for a Try nested in an Option.

Since

1.4.0